Driver
└─Sqlite
public class Sqlite
extends Driver
Constructor Summary | |
---|---|
void | __construct(array options) 架构函数 |
Method Summary | |
---|---|
protected string | getCacheKey(string name) 获取实际的缓存标识 |
bool | has(string name) 判断缓存 |
mixed | get(string name, mixed default) 读取缓存 |
boolean | set(string name, mixed value, integer expire) 写入缓存 |
false|int | inc(string name, int step) 自增缓存(针对数值缓存) |
false|int | dec(string name, int step) 自减缓存(针对数值缓存) |
boolean | rm(string name) 删除缓存 |
boolean | clear(string tag) 清除缓存 |
Methods inherited from think\cache\Driver | |
---|---|
clear, dec, get, getCacheKey, getTagItem, handler, has, inc, pull, rm, set, setTagItem, tag |
public void __construct(array options)
架构函数
protected string getCacheKey(string name)
获取实际的缓存标识
public bool has(string name)
判断缓存
public mixed get(string name, mixed default)
读取缓存
public boolean set(string name, mixed value, integer expire)
写入缓存
public false|int inc(string name, int step)
自增缓存(针对数值缓存)
public false|int dec(string name, int step)
自减缓存(针对数值缓存)
public boolean rm(string name)
删除缓存
public boolean clear(string tag)
清除缓存
Sqlite缓存驱动